Revert "Fix compilation warning: Use G_POINTER_TO_UINT"
authorTor Lillqvist <tml@iki.fi>
Tue, 10 Nov 2009 14:08:23 +0000 (16:08 +0200)
committerTor Lillqvist <tml@iki.fi>
Tue, 10 Nov 2009 14:17:33 +0000 (16:17 +0200)
commit0e87c905395b06ce31cee5238172ce2de739f532
tree4089964efabd49eb0dad49cbf99f6fc94ca5c893
parentcb301e6dbbe8c4017c7022995976b577796cf903
Revert "Fix compilation warning: Use G_POINTER_TO_UINT"

GPOINTER_TO_UINT() *does* drop the upper 32 bits on 64-bit
Windows. After all, it by definition produces a (32-bit) unsigned int.

The GLib commit mentioned in the reverted commit's log message just
means that it does this without any compiler warning about casting
from pointer to integer of smaller size, as it first casts to a 64-bit
integer, then casts that to a (32-bit) int.

We must use the GdkNativeWindow cast here so that on 64-bit Windows
the gpointer data in embedded_list is converted to a (64-bit) native
window handle without going through 32-bit truncation. If ifdefs are
required to avoid compiler warnings on X11, so be it then. Probably it
would be best to introduce a GDK_GPOINTER_TO_NATIVE_WINDOW() macro in
gdktypes.h.

This reverts commit 78151dc7d41069e876fe165527e68c238ef7fd4a.
gtk/gtkwindow.c